home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / read.c,v < prev    next >
Text File  |  1991-11-27  |  2KB  |  96 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.06.19.14.31.51;  author ouster;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     91.11.27.13.13.08;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24.  
  25. 1.1
  26. log
  27. @Initial revision
  28. @
  29. text
  30. @/* 
  31.  * read.c --
  32.  *
  33.  *    Procedure to map from Unix read system call to Sprite.
  34.  *
  35.  * Copyright (C) 1986 Regents of the University of California
  36.  * All rights reserved.
  37.  */
  38.  
  39. #ifndef lint
  40. static char rcsid[] = "$Header: read.c,v 1.1 86/03/30 15:07:57 douglis Exp $ SPRITE (Berkeley)";
  41. #endif not lint
  42.  
  43. #include "sprite.h"
  44. #include "fs.h"
  45. #include "compatInt.h"
  46.  
  47.  
  48. /*
  49.  *----------------------------------------------------------------------
  50.  *
  51.  * read --
  52.  *
  53.  *    Procedure to map from Unix read system call to Sprite Fs_Read.
  54.  *
  55.  * Results:
  56.  *    UNIX_ERROR is returned upon error, with the actual error code
  57.  *    stored in errno.  Upon success, the number of bytes actually
  58.  *    read is returned.
  59.  *
  60.  * Side effects:
  61.  *    The buffer is filled with the number of bytes indicated by
  62.  *    the length parameter.  
  63.  *
  64.  *----------------------------------------------------------------------
  65.  */
  66.  
  67. int
  68. read(descriptor, buffer, numBytes)
  69.     int descriptor;        /* descriptor for stream to read */
  70.     char *buffer;        /* pointer to buffer area */
  71.     int numBytes;        /* number of bytes to read */
  72. {
  73.     ReturnStatus status;    /* result returned by Fs_Read */
  74.     int amountRead;        /* place to hold number of bytes read */
  75.  
  76.     status = Fs_Read(descriptor, numBytes, buffer, &amountRead);
  77.     if (status != SUCCESS) {
  78.     errno = Compat_MapCode(status);
  79.     return(UNIX_ERROR);
  80.     } else {
  81.     return(amountRead);
  82.     }
  83. }
  84. @
  85.  
  86.  
  87. 1.1.1.1
  88. log
  89. @Initial branch for Sprite server.
  90. @
  91. text
  92. @d11 1
  93. a11 1
  94. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/read.c,v 1.1 88/06/19 14:31:51 ouster Exp $ SPRITE (Berkeley)";
  95. @
  96.